#
# Melissa Data Name Object for Windows 32 and 64 bit.
#
# sample makefile for customers
#
CXX=cl
CXXFLAGS=-Zi -O -GX
LDLIBS=mdName.lib
RM=del /q /f

all: nosample.exe

nosample.exe:	nosample.c mdName.h
	$(CXX) $(CXXFLAGS) nosample.c $(LDLIBS)

clean:
	$(RM) *.exe *.obj *.ilk *.pdb

